home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir24 / nosinst.zip / REWRITE < prev    next >
Text File  |  1993-11-10  |  720b  |  25 lines

  1. # =======                                     
  2. # REWRITE
  3. # =======
  4. # Read the rewrite file for lines where the first word is a
  5. # regular expression and the second word are rewriting rules.
  6. #
  7. # The special character '$' followed by a digit denotes the
  8. # string that matched a '*' character.
  9. # The '*' characters are numbered from 1 to 9.
  10. # 'r' repeats from the start of the rewrite file
  11. #
  12. #
  13. # Grab anything destined for me (this stops mail bouncing around).
  14. _UC_* _UC_
  15. #
  16. # If not for me, remove any trailing .ampr.org
  17. *.ampr.org $1 r
  18. *.ampr.org. $1 r
  19. #
  20. # It doesn't appear to be for me so remove my callsign from the mails
  21. # destination and let the mailer deal with it.
  22. *%_UC_ $1 r
  23. *@_UC_ $1 r
  24. #
  25.